home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2003-07-22 | 1.4 KB | 52 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0" "TYPE"="5" "COUNT"="1" "UIPATH"="Internet\Internet Explorer\Clear" "NAME"="Clear Google Toolbar History" "VERSION"="1.00" "LANGUAGE"="VBScript" "TEXT 1"="Clear Search History" "DESCRIPTION 1"="This plug-in will allow you to wipe the list of previous search items from your Google toolbar in Internet Explorer. The free Google Toolbar can be obtained at http://toolbar.google.com/" "AUTHOR"="Xteq Systems" "CONTACTURL"="http://www.xteq.com" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"="Plug-in by CptSiskoX " 'Declaration of some constants sP1="HKEY_CURRENT_USER\Software\Google\NavClient\1.1\History\" bShowMessage=true 'Called when the Plugin is started Sub Plugin_Initialize End Sub 'Called when the Plugin should validate the Data the user has entered Sub Plugin_CheckData(ElementIndex) End Sub 'Called when the Plugin should apply the changes Sub Plugin_Apply(ElementIndex,ElementSubIndex) Select Case ElementIndex Case 1 'run i=RegEnumValues(sp1) for l=1 to i Call RegDeleteValue(sp1 & RegEnumElement(l)) Next end Select if bShowMessage=true then Call MsgInformation("Your Google Search Bar History Has Been Eliminated.") Call Restart end if End Sub 'Called when the Plugin is about to be removed from memory Sub Plugin_Terminate End Sub